HTML Entities

In HTML each character may be represented using it's corresponding character code or entity name, preceded by an ampersand and followed by a semicolon.

Non-Breaking Space

This     word     has five spaces on each side of it.
This     word     has five spaces on each side of it.
Browsers will treat this sentence as a single word, for this reason word warp will not occur.
Browsers will treat this sentence as a single word, for this reason word warp will not occur.

Less Than (<) and Greater Than (>)

HTML tags open and close with angle brackets (<, >).
HTML tags open and close with angle brackets (&lt;, &gt;).

Ampersand (&)

The character code for the non-breaking space is &nbsp;.
The character code for the non-breaking space is &amp;nbsp;.